/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER */
.site-header {
  background-image: url('../Images/header backgorund.png');
  background-color: #415a77;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  z-index: 1000;
}

/* LAYOUT */
.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 100px;
  width: auto;
}


/* NAV (desktop) */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: x-large;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.main-nav a:hover {
  color: slategray;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
  user-select: none;
}

/* MOBILE STYLES */
@media (max-width: 900px) {

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .main-nav ul {
    position: absolute;
    top: 120px;
    right: 0;
    width: 100%;
    background-image: url('../Images/dropdown\ image.png');
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    gap: 1.5rem;
    display: none; /* hidden by default */
  }

  .main-nav a {
  text-decoration: none;
  color: lightslategray;
  font-size: x-large;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  }

  .main-nav.open ul {
    display: flex; /* show when toggled */
  }
}

.product-section {
  padding: 140px 20px;
  background-image:
    url('../Images/Home/coastal-themed\ sand\ .png'),
    url('../Images/Home/coastal-themed\ blue.png');
  background-size: cover, cover;
  background-position: center top, center bottom;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}

.product-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
  animation: fadeSlideUp 1.1s ease-out forwards;
}

.product-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.product-content {
  flex: 1;
}

.product-content h2 {
  font-size: 2.6rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #1b263b;
  margin-bottom: 10px;
}

.product-intro {
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #415a77;
  margin-bottom: 20px;
}

/* PRICE BOX */
.product-price-box {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 24px;
}

.product-price-box h3 {
  margin-bottom: 6px;
  color: #1b263b;
  font-family: Arial, Helvetica, sans-serif;
}

.price-range {
  font-size: 1.4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #1b263b;
}

.price-note {
  font-size: 0.95rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #64748b;
}

/* BLOCKS */
.product-section-block {
  margin-bottom: 20px;
}

.product-section-block h3 {
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #1b263b;
  margin-bottom: 6px;
}

.product-section-block ul {
  padding-left: 18px;
  color: #415a77;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

/* CTA BUTTON */
.product-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 22px;
  background: #1b263b;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: 0.3s ease;
  font-family: Arial, Helvetica, sans-serif;
}

.product-cta:hover {
  background: #415a77;
}

/* ANIMATION */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .product-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .product-content h2 {
    font-size: 2.2rem;
  }
}

.site-footer {
  background-color: #1b263b;
  color: white;
  padding: 20px 20px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-left h4 {
  margin-bottom: 10px;
}

.footer-right .social-link {
  display: block;
  color: #a8c0d6;
  text-decoration: none;
  margin: 5px 0;
}

.footer-right .social-link:hover {
  color: white;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}